home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 626-637 / disk_636 / wwbatch / ibf2ram next >
Text File  |  1992-05-06  |  706b  |  32 lines

  1. ; ! WW ! Install Batch File To RAM
  2. ; by Carsten Raufuß, 02-Feb-1992
  3. ; ©1991 by ! WIZARD WORKS !
  4. ; - with this batch file you can copy the files/commands
  5. ;   needed for ! WW ! program batch files to RAM:
  6. ; - this is quite helpful for 1 disk drive Amigas
  7. ; - copy this batchfile to RAM: or SYS: and execute it...
  8.  
  9. echo "Trying to create RAM:newc ... "
  10. if not exists RAM:newc
  11.    makedir  RAM:newc
  12.    echo "O.K."
  13.    else
  14.    echo "RAM:newc already existed"
  15. endif
  16.  
  17. echo "Trying to copy ... "
  18. echo "C:IconX ... "
  19.    copy   C:IconX     RAM:newc
  20.    echo "O.K."
  21.  
  22. echo "C:Run ... "
  23.    copy   C:Run       RAM:newc
  24.    echo "O.K."
  25.  
  26. echo "C:Execute ... "
  27.    copy   C:Execute   RAM:newc
  28.    echo "O.K."
  29.  
  30. path RAM:newc add
  31.  
  32.